6622172c3e9d30567ff812727c4bf21d84a71775,sling/core/src/main/java/org/apache/sling/core/impl/auth/SlingAuthenticator.java,SlingAuthenticator,authenticate,#HttpServletRequest#HttpServletResponse#,200
Before Change
// request authentication information and send 403 (Forbidden)
// if the handler cannot request authentication information.
if (!handler.requestAuthentication(req, res)) {
this.sendFailure(res);
}
After Change
// request authentication information and send 403 (Forbidden)
// if no handler can request authentication information.
requestAuthentication(req, res);
// end request
return false;